[USER (data scientist)]: Hey, I've got this dataset of laptops, and I need to find the ones that are good for data scientists and people working with graphics. Can you help me filter them? Please generate and display a DataFrame to identify laptops with dedicated GPUs ('Nvidia GeForce' or 'AMD Radeon') from the 'laptops_price.csv' dataset, and store this filtered DataFrame as a pickle file.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import pickle

laptops_price = pd.read_csv("laptops_price.csv")

# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END:

print(laptops_dedicated_gpu)

# save data
pickle.dump(laptops_dedicated_gpu,open("./pred_result/laptops_dedicated_gpu.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Absolutely! Let's start by filtering the laptops with dedicated GPUs, like Nvidia GeForce and AMD Radeon. Here's the code for that: 
